home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / l2c-19.exe / QDIM.DCL < prev    next >
Text File  |  1993-06-25  |  1KB  |  88 lines

  1. qdlist : dialog {
  2.    key = "qdim";
  3.    label = "Select QDIM choices";
  4.    : popup_list {
  5.     key = "dlist";
  6.     label = "Dimstyle";
  7.     width = 25;
  8.     fixed_width = true;
  9.    }
  10.    : popup_list {
  11.     key = "llist";
  12.     label = "Layer   ";
  13.     width = 25;
  14.     fixed_width = true;
  15.    }
  16.    spacer_1;
  17.       : boxed_radio_column {
  18.     label = "Force Modes";
  19.     : radio_button {
  20.        key = "none";
  21.        label = "None";
  22.        mnemonic = "N";
  23.     }
  24.     : radio_button {
  25.        key = "aligned";
  26.        label = "ALIgned";
  27.        mnemonic = "A";
  28.     }
  29.     : radio_button {
  30.        key = "horizontal";
  31.        label = "HORizontal";
  32.        mnemonic = "H";
  33.     }
  34.     : radio_button {
  35.        key = "vertical";
  36.        label = "VERTical";
  37.        mnemonic = "V";
  38.     }
  39.    }
  40.    : row {
  41.     : toggle {
  42.         label = "Baseline On";
  43.         key = "base";
  44.     }
  45.     : button {
  46.         label = "Pick";
  47.         key = "pick";
  48.     }
  49.    }
  50.    : toggle {
  51.     label = "Follow";
  52.     key = "follow";
  53.    }
  54.    spacer_1;
  55.    : row {
  56.     ok_button;
  57.     cancel_button;
  58.    }
  59. }                // End Dialog //
  60.  
  61. edit : dialog {
  62.   label = "Dimension Text";
  63.     : edit_box {
  64.     key = "word";
  65. //    edit_width = 20;//
  66.     }
  67.     
  68.     : row {
  69.     : button {
  70.         key = "plusminus";
  71.         label = "+/-";
  72.     }
  73.     : button {
  74.         key = "min";
  75.         label = "MIN.";
  76.     }
  77.     : button {
  78.         key = "clr";
  79.         label = "CLR.";
  80.     }
  81.     : button {
  82.         key = "eq";
  83.         label = "EQ.";
  84.     }
  85.     }
  86.  
  87.   ok_button;
  88. }